net/http.http2writeContext.Framer (method)

14 uses

	net/http (current package)
		h2_bundle.go#L10293: 	Framer() *http2Framer
		h2_bundle.go#L10336: 	return ctx.Framer().WriteSettings([]http2Setting(s)...)
		h2_bundle.go#L10345: 	err := ctx.Framer().WriteGoAway(p.maxStreamID, p.code, nil)
		h2_bundle.go#L10363: 	return ctx.Framer().WriteData(w.streamID, w.endStream, w.p)
		h2_bundle.go#L10377: 	return ctx.Framer().WriteRSTStream(hp.StreamID, http2ErrCodeInternal)
		h2_bundle.go#L10383: 	return ctx.Framer().WriteRSTStream(se.StreamID, se.Code)
		h2_bundle.go#L10391: 	return ctx.Framer().WritePing(true, w.pf.Data)
		h2_bundle.go#L10401: 	return ctx.Framer().WriteSettingsAck()
		h2_bundle.go#L10495: 		return ctx.Framer().WriteHeaders(http2HeadersFrameParam{
		h2_bundle.go#L10502: 		return ctx.Framer().WriteContinuation(w.streamID, lastFrag, frag)
		h2_bundle.go#L10544: 		return ctx.Framer().WritePushPromise(http2PushPromiseParam{
		h2_bundle.go#L10551: 		return ctx.Framer().WriteContinuation(w.streamID, lastFrag, frag)
		h2_bundle.go#L10563: 	return ctx.Framer().WriteHeaders(http2HeadersFrameParam{
		h2_bundle.go#L10584: 	return ctx.Framer().WriteWindowUpdate(wu.streamID, wu.n)